home *** CD-ROM | disk | FTP | other *** search
/ Software Vault: The Diamond Collection / The Diamond Collection (Software Vault)(Digital Impact).ISO / cdr18 / fbp95.zip / NFLPA94.BAT < prev    next >
DOS Batch File  |  1994-12-14  |  1KB  |  36 lines

  1. @echo off
  2. rem ****** This batch file will first delete all NFLPA94.* files from
  3. rem ****** the FB95 directory, then will unchunk the NFLPA94.RES file.
  4.  
  5. echo This batch file is designed to restore the NFLPA94 league to its
  6. echo original state.  In order to do this safely, any existing NFLPA94
  7. echo files in the game and tapes directory must be deleted.
  8. echo.
  9. echo If you continue with this batch file, all files that begin with
  10. echo "NFLPA94", except this batch file and the NFLPA94.RES file in the
  11. echo main game directory and in the TAPES\GAME directory will be deleted.
  12. echo If you do not want these files deleted, press CTRL+C now to
  13. echo terminate the batch file, otherwise
  14. pause
  15.  
  16. rem ****** Let's delete the old NFLPA94 files
  17. echo.
  18. echo Now deleting old league files . . .
  19. del NFLPA94.LGE > nul
  20. del NFLPA94.LGC > nul
  21. del NFLPA94.PYR > nul
  22. del NFLPA94.PYF > nul
  23. del NFLPA94.PYC > nul
  24. del NFLPA94.TMN > nul
  25. del NFLPA94.RST > nul
  26. del NFLPA94.TRN > nul
  27. del NFLPA94.DFT > nul
  28. del NFLPA94.IDX > nul
  29. del NFLPA94.DAT > nul
  30. del TAPES\GAME\NFLPA94.* > nul
  31.  
  32. rem ****** Now lets unchunk the original league files
  33. echo.
  34. echo Now unchunking the original NFLPA94 league files . . .
  35. unchunk nflpa94.res . > nul
  36.